home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
The CICA Windows Explosion!
/
The CICA Windows Explosion! - Disc 2.iso
/
programr
/
ptrp25dm.zip
/
ETEST7.TRP
< prev
next >
Wrap
Text File
|
1995-01-30
|
388b
|
17 lines
var
fileCount : integer = 0;
endVar
procedure main
forEachFile('*.pas', "printFileName", false);
writeln;
writeln('File Count ', fileCount);
endProc
function printFileName(fName : string, attr : byte,
time : longint, size : longint) : boolean;
writeln(fName);
inc(fileCount);
return true;
endProc